home *** CD-ROM | disk | FTP | other *** search
/ NOVA - For the NeXT Workstation / NOVA - For the NeXT Workstation.iso / SourceCode / AdobeExamples / NX_Patterns / README < prev    next >
Encoding:
Text File  |  1992-12-19  |  1.9 KB  |  42 lines

  1.  
  2. README file for the Pattern application.
  3.  
  4. The Pattern application is intended to highlight patterns in a Display PostScript
  5. environment. Patterns are formally defined in Level 2 and will be supported by
  6. special operators. Applications can include emulations for Pattern handling that
  7. will work in Level 1 devices. The Pattern application contains these emulations.
  8. In addition, performance and tiling issues are demonstrated in the application.
  9.  
  10.  
  11. Below lies an annotated list of the files used in the application. 
  12.  
  13. PatternApp        - A subclass of Application. Creates the window with the
  14.                     ScrollView, DocView and DrawingView. Provides the
  15.                     id's of the items in the Methods Panel (matrices, buttons, etc).
  16. DocView            - A subclass of View. Serves as the DocView for the ScrollView.
  17.                     Makes the DrawingView a subview making it easier to
  18.                     size and scale the DrawingView. The Drawing View is
  19.                     resized whenever the user zooms into or out of the
  20.                     document.
  21. DrawingView        - A subclass of View. The view that manages the drawing for a
  22.                     document. Contains three simple graphics, a filled rectangle,
  23.                     a stroked rectangle and a set of charcaters. Fill the graphics
  24.                     with the selected pattern with the selected number of cells
  25.                     and with the selected approach.
  26. Pattern            - A subclass of Object. Roughly modeled after the Font object. Provides
  27.                     methods for creating and setting patterns.
  28.  
  29.  
  30. PSWpatterns.psw            - PS Routines for turning patterns into Type 3 fonts.
  31. PSWsamples.m            - PS Pattern dictionaries (CircleStar, Octagon, Brick, Weave).
  32. PSWpatternsdemos.psw    - PS routines for drawing and compositing patterns.
  33.                             (Not recommended approaches)
  34.  
  35.  
  36. Topics of interest from the Pattern application:
  37.  
  38. Displaying patterns as a Type 3 font (Pattern, PSWpatterns.psw)
  39. Locking the pattern to View space (Pattern, PSWpatterns.psw, DrawingView)
  40. Pattern Dictionaries (PSWsamples.psw)
  41. Scaling the view (DocView, DrawingView)
  42.